Mixing Logical Operators Without Parentheses (MLOWP)

Description:

An expression containing multiple logical operators together should be parenthesized properly.

Incorrect:

var a,b,c:boolean;
...
if a or b and c then
    ...

Correct:

var a,b,c:boolean;
...
if (a or b) and c then
    ...